- Notifications
You must be signed in to change notification settings - Fork 5.8k
/
Copy path916. Word Subsets_test.go
63 lines (50 loc) · 1.33 KB
/
916. Word Subsets_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package leetcode
import (
"fmt"
"testing"
)
typequestion916struct {
para916
ans916
}
// para 是参数
// one 代表第一个参数
typepara916struct {
A []string
B []string
}
// ans 是答案
// one 代表第一个答案
typeans916struct {
one []string
}
funcTest_Problem916(t*testing.T) {
qs:= []question916{
{
para916{[]string{"amazon", "apple", "facebook", "google", "leetcode"}, []string{"e", "o"}},
ans916{[]string{"facebook", "google", "leetcode"}},
},
{
para916{[]string{"amazon", "apple", "facebook", "google", "leetcode"}, []string{"l", "e"}},
ans916{[]string{"apple", "google", "leetcode"}},
},
{
para916{[]string{"amazon", "apple", "facebook", "google", "leetcode"}, []string{"e", "oo"}},
ans916{[]string{"facebook", "google"}},
},
{
para916{[]string{"amazon", "apple", "facebook", "google", "leetcode"}, []string{"lo", "eo"}},
ans916{[]string{"google", "leetcode"}},
},
{
para916{[]string{"amazon", "apple", "facebook", "google", "leetcode"}, []string{"ec", "oc", "ceo"}},
ans916{[]string{"facebook", "leetcode"}},
},
}
fmt.Printf("------------------------Leetcode Problem 916------------------------\n")
for_, q:=rangeqs {
_, p:=q.ans916, q.para916
fmt.Printf("【input】:%v 【output】:%v\n", p, wordSubsets(p.A, p.B))
}
fmt.Printf("\n\n\n")
}